]> git.r.bdr.sh - rbdr/super-polarity/blame - Super Polarity/Program.cs
Merge branch 'master' of github.com:benbeltran/super-polarity
[rbdr/super-polarity] / Super Polarity / Program.cs
CommitLineData
63a61ee2
BB
1#region Using Statements
2using System;
3using System.Collections.Generic;
4using System.Linq;
5#endregion
6
7namespace SuperPolarity
8{
9#if WINDOWS || LINUX
10 /// <summary>
11 /// The main class.
12 /// </summary>
13 public static class Program
14 {
15 /// <summary>
16 /// The main entry point for the application.
17 /// </summary>
18 [STAThread]
19 static void Main()
20 {
21 using (var superPolarity = new SuperPolarity())
22 superPolarity.Run();
23 }
24 }
25#endif
26}